* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #f4f6fb;
  color: #222;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.logo-img{
  width: 40px;
  height: 40px;
  object-fit: contain;
}
  
.logo {
  font-weight: 700;
  font-size: 20px;
  color: #4a6cf7;
  flex: 1;
}

.site-header nav a {
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(90deg, #4a6cf7, #6a11cb);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 2px solid #4a6cf7;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #4a6cf7;
  font-weight: 600;
}

.large {
  padding: 14px 28px;
  font-size: 16px;
}

/* HERO */
.hero {
  padding: 65px 22px;
  text-align: center;
  background: linear-gradient(135deg, #4a6cf7, #6a11cb);
  color: #fff;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 14px;
}

.hero p {
  font-size: 15px;
  max-width: 520px;
  margin: auto;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 26px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
}

.hero-stats strong {
  font-size: 18px;
  display: block;
}

/* FEATURES */
.features {
  padding: 60px 22px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-card h3 {
  color: #4a6cf7;
  margin-bottom: 8px;
}

/* LEVELS */
.levels {
  padding: 60px 22px;
  background: #fff;
  text-align: center;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.level-card {
  background: #f4f6fb;
  padding: 25px;
  border-radius: 16px;
}

.level-card h3 {
  margin-bottom: 10px;
  color: #4a6cf7;
}

.level-card ul {
  list-style: none;
  font-size: 14px;
}

.level-card li {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(135deg, #4a6cf7, #6a11cb);
  color: #fff;
}

.highlight h3 {
  color: #fff;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 60px 22px;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  width: 200px;
}

.step span {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #4a6cf7;
  color: #fff;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* CTA */
.cta {
  padding: 60px 22px;
  text-align: center;
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
}

/* FOOTER */
.site-footer {
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: #777;
}
/* ===============================
   VIDEO SECTION (Porn-style Grid)
   =============================== */

.video-section {
  padding: 60px 22px;
  max-width: 1200px;
  margin: auto;
}

.video-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.video-section .sub {
  text-align: center;
  margin-bottom: 35px;
  font-size: 15px;
  color: #555;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.25s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.video-thumb {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.video-thumb::after {
  content: "▶";
  font-size: 32px;
  color: rgba(255,255,255,0.85);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.video-info {
  padding: 12px;
}

.video-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-views {
  font-size: 12px;
  color: #777;
}